From: Steven G. Johnson Date: Sat, 30 May 2015 13:21:32 +0000 (-0400) Subject: Merge pull request #38 from jlec/jlec-master X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~24^2^2~186 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=1f21f3c09608c4e3520d96c0414659c75142f5d1;p=utf8proc.git Merge pull request #38 from jlec/jlec-master Enhance build process --- 1f21f3c09608c4e3520d96c0414659c75142f5d1 diff --cc Makefile index e738d07,d2b272f..a8b0094 --- a/Makefile +++ b/Makefile @@@ -94,27 -96,18 +96,27 @@@ data/GraphemeBreakTest.txt $(MAKE) -C data GraphemeBreakTest.txt test/normtest: test/normtest.c utf8proc.o utf8proc.h test/tests.h - $(cc) test/normtest.c utf8proc.o -o $@ + $(CC) test/normtest.c utf8proc.o -o $@ test/graphemetest: test/graphemetest.c utf8proc.o utf8proc.h test/tests.h - $(cc) test/graphemetest.c utf8proc.o -o $@ + $(CC) test/graphemetest.c utf8proc.o -o $@ test/printproperty: test/printproperty.c utf8proc.o utf8proc.h test/tests.h - $(cc) test/printproperty.c utf8proc.o -o $@ + $(CC) test/printproperty.c utf8proc.o -o $@ test/charwidth: test/charwidth.c utf8proc.o utf8proc.h test/tests.h - $(cc) test/charwidth.c utf8proc.o -o $@ + $(CC) test/charwidth.c utf8proc.o -o $@ -check: test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt test/printproperty test/charwidth bench/bench.c bench/util.c bench/util.h utf8proc.o +test/valid: test/valid.c utf8proc.o utf8proc.h test/tests.h + $(cc) test/valid.c utf8proc.o -o $@ + +test/iterate: test/iterate.c utf8proc.o utf8proc.h test/tests.h + $(cc) test/iterate.c utf8proc.o -o $@ + +test/case: test/case.c utf8proc.o utf8proc.h test/tests.h + $(cc) test/case.c utf8proc.o -o $@ + +check: test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt test/printproperty test/case test/charwidth test/valid test/iterate bench/bench.c bench/util.c bench/util.h utf8proc.o $(MAKE) -C bench test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt